/* Modal Overlay */
.account-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20000;
}

/* Modal Content Box */
.account-modal-content {
    background: transparent;
    width: 900px;
    height: 570px;
    display: flex;
    border: none;
    box-shadow: none;
    padding: 0;
    gap: 0;
}

/* Sidebar */
.account-sidebar {
    width: 200px;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    border: 1px solid #e8e8e8;
    border-radius: 12px 0 12px 12px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.account-profile-summary {
    padding: 32px 0 24px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    border-radius: 12px 0 0 0;
}

.profile-avatar-circle {
    width: 64px;
    height: 64px;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.profile-avatar-circle:hover {
    border-color: #333;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.profile-name {
    color: #666;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.account-nav-list {
    list-style: none;
    padding: 8px 0;
    margin: 0;
    flex: 1;
}

.account-nav-item {
    padding: 14px 24px;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    color: #555;
    transition: all 0.2s ease;
    margin: 2px 8px;
    border-radius: 6px;
    font-weight: 400;
}

.account-nav-item:hover {
    background: linear-gradient(90deg, #f5f5f5 0%, #fafafa 100%);
    color: #333;
}

.account-nav-item.active {
    background: linear-gradient(90deg, #1a1a1a 0%, #333 100%);
    color: #fff;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.account-nav-item.exit-btn {
    color: #999;
    margin-top: auto;
}

.account-nav-item.exit-btn:hover {
    color: #e74c3c;
    background: #fff5f5;
}

/* Right Column Wrapper */
.account-right-column {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Header Card */
.account-header-card {
    background: linear-gradient(90deg, #ffffff 0%, #fafafa 100%);
    border: 1px solid #e8e8e8;
    border-left: none;
    border-radius: 0 12px 12px 0;
    padding: 16px 40px 16px 60px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    box-shadow: 8px 4px 24px rgba(0, 0, 0, 0.06);
}

/* Main Panel */
.account-main-panel {
    flex: 1;
    padding: 32px 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    margin-left: 20px;
}

.panel-title {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    margin-bottom: 0;
    letter-spacing: 0.5px;
}

.form-group {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.form-group label {
    width: 80px;
    font-size: 14px;
    color: #666;
    font-weight: 400;
}

.info-input {
    flex: 0 0 280px;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    outline: none;
    padding: 8px 0;
    font-size: 14px;
    color: #333;
    background: transparent;
    transition: border-color 0.3s ease;
}

.info-input:focus {
    border-bottom-color: #333;
}

.input-with-action {
    display: flex;
    align-items: center;
}

.small-action-btn {
    background: transparent;
    border: none;
    padding: 6px 12px;
    font-size: 12px;
    color: #666;
    margin-left: 16px;
    cursor: pointer;
    transition: color 0.2s ease;
    font-weight: 400;
}

.small-action-btn:hover {
    color: #333;
}

.birthday-inputs {
    display: flex;
    align-items: center;
}

.date-input {
    width: 48px;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    text-align: center;
    outline: none;
    margin-right: 4px;
    padding: 8px 0;
    font-size: 14px;
    color: #333;
    background: transparent;
    transition: border-color 0.3s ease;
}

.date-input:focus {
    border-bottom-color: #333;
}

.date-label {
    margin-right: 20px;
    font-size: 13px;
    color: #999;
}

/* Footer Button */
.form-footer {
    margin-top: auto;
    text-align: right;
    padding-bottom: 8px;
    padding-right: 16px;
}

.save-btn {
    background: #000;
    border: none;
    padding: 10px 36px;
    font-size: 14px;
    color: #fff;
    cursor: pointer;
    letter-spacing: 3px;
    border-radius: 20px;
    font-weight: 500;
}

.save-btn:hover {
    background: #000;
}
